body, html {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .containerMainTitle {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.containerMainTitle a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.containerMainTitle a img {
    max-height: 100px;
}

.containerMainTitle a h2 {
    margin-left: 10px;
}

  
  .headerMainTitle {
    background: #F3A079;
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .logo {
    max-height: 100px;
    margin-right: 20px;
  }
  
  .header, .footer {
    background: #F3A079;
    color: white;
    padding: 10px 0;
    text-align: center;
  }
  
  .navigation {
    background: #f4f4f4;
    padding: 10px 0;
    text-align: center;
  }
  
  .navigation a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    display: inline-block;
  }

.navigation a:hover {
    /* Change only the text color */
    color: #F3A079; /* Example: Blue color */
}

.navigation a.active {
    /* Change only the text color for active link */
    color: #F3A079; /* Example: Green color */
}
  
  .navigation a:hover {
    color: #555;
  }
  
  .main {
    min-height: 80vh;
    padding: 20px 0;
  }
  
  .footer p {
    margin: 0;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  #contactForm {
    display: flex;
    flex-direction: column;
  }
  
  #contactForm label {
    margin-bottom: 5px;
  }
  
  #contactForm input[type=text],
  #contactForm input[type=email],
  #contactForm textarea {
    margin-bottom: 10px;
    padding: 8px;
    width: 95%;
    border: 1px solid #ccc;
  }
  
  #contactForm input[type=submit] {
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #contactForm input[type=submit]:hover {
    background-color: #555;
  }
  
  #myBtn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
  }

  .collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 25px;
  }
  
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }
  
.mainTANDC {
  text-align: center; /* Center align the content */
  padding: 20px; /* Add some padding around the content */
}

.containerTANDC a {
  display: inline-block; /* Make links block elements to allow padding */
  margin: 10px 0; /* Add some margin top and bottom for spacing */
  padding: 10px 20px; /* Padding inside the link for better click area */
  background-color: #007bff; /* A blue background color */
  color: white; /* White text color */
  text-decoration: none; /* Remove underline from links */
  border-radius: 5px; /* Rounded corners for the links */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.containerTANDC a:hover {
  background-color: #0056b3; /* Darker shade of blue on hover */
}

.containerTANDC ul {
  list-style-type: none; /* Removes the default list styling */
  padding: 0; /* Removes default padding, especially on the left */
  margin: 0; /* Removes default margin */
}

.containerTANDC ul li {
  margin-bottom: 10px; /* Optional: Adds space between list items */
}

.image-collage {
  display: flex;
  flex-direction: column; /* Align items vertically */
  gap: 10px; /* Spacing between images */
}

.image-collage img {
  width: 100%; /* Each image takes the full width */
  height: auto; /* Maintain aspect ratio */
}

.image-collage .app-demo {
  display: flex;
  flex-wrap: wrap; /* Allows images to wrap to the next line */
  gap: 10px;
  margin-bottom: 20px;
}

.image-collage .app-demo img {
  flex: 1; /* Allows images to grow and shrink */
  max-height: 200px; /* Adjust as needed */
  width: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Prevents images from being too wide */
}

@media screen and (max-width: 600px) {
  .image-collage .app-demo img {
    max-height: 150px; /* Smaller height for smaller screens */
  }
}

.container h2 {
  font-size: 35px; /* Larger font size */
  font-weight: bold; /* Bold font weight */
  color: #333; /* Dark color for text */
  margin-top: 30px; /* Space above the heading */
  margin-bottom: 15px; /* Space below the heading */
  text-align: center; /* Center align the headings */
}

.app-demo {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Creates a responsive grid */
  gap: 10px; /* Spacing between images */
}

.app-demo img {
  width: 100%; /* Ensures images take full width of the grid column */
  height: auto; /* Maintains aspect ratio */
  object-fit: cover; /* Ensures images cover the grid area nicely */
}


  